home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
tform1
/
project1.dpr
next >
Wrap
Text File
|
1995-12-22
|
862b
|
22 lines
program Project1;
(*--------------------------------------------------------------------*)
(* MAMAVISION Software Consult *)
(*--------------------------------------------------------------------*)
(* Sample Code to show a workaround for form inheritance which *)
(* the Delphi IDE does not support yet. *)
(*--------------------------------------------------------------------*)
(* August 1995 *)
(* *)
(**********************************************************************)
uses
Forms,
Rootform in 'ROOTFORM.PAS' {Form0},
Unit1 in 'UNIT1.PAS' {Form1};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.